home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / fare_context.sql < prev    next >
Text File  |  2000-05-12  |  932b  |  24 lines

  1. /* RCSVER $Id: fare_context.sql,v 1.1 1999-06-03 13:14:28-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        fare_context.sql
  6. * Date:        05/31/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the fare_context table. This table contains
  9. *               derived probed data associated with fare entry and      
  10. *               currency acceptance.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE fare_context
  14. (
  15.     fare_context_id     NUMBER(38),
  16.     fareset_id        NUMBER(38),
  17.     cashbox_glid        NUMBER(38),
  18.     cb_sernum        VARCHAR2(20),
  19.     fs_date            DATE,        /* fareset date/time */
  20.     cb_date            DATE,        /* cashbox insert time */
  21.     driver_context_id    NUMBER(38),    /* references driver_context */
  22.         CONSTRAINT pk_fare_context PRIMARY KEY (fare_context_id)
  23. );
  24.